home *** CD-ROM | disk | FTP | other *** search
- stop();
- help_bt.onPress = function()
- {
- so1.start(0,1);
- this.gotoAndStop(2);
- };
- help_bt.onRollOver = function()
- {
- so1.start(0,1);
- this.help_bt_rollover.gotoAndStop(2);
- };
- help_bt.onRollOut = function()
- {
- this.help_bt_rollover.gotoAndStop(1);
- };
- help_bt.onRelease = help_bt.onReleaseOutside = function()
- {
- gotoAndStop(3);
- };
- game_start_bt.onPress = function()
- {
- so1.start(0,1);
- this.gotoAndStop(2);
- };
- game_start_bt.onRollOver = function()
- {
- so1.start(0,1);
- this.game_start_bt_rollover.gotoAndStop(2);
- };
- game_start_bt.onRollOut = function()
- {
- this.game_start_bt_rollover.gotoAndStop(1);
- };
- game_start_bt.onRelease = game_start_bt.onReleaseOutside = function()
- {
- gotoAndStop(4);
- };
-